Release 10.1A: OpenEdge Development:
Java Open Clients


Inherited methods

The following methods are inherited from the Java SDO DataObject implementation. For a complete list, see the documentation for the Service Data Objects in EMF 2.0.1 at the following location:

get( )

Returns the specified column property value as an Object, as specified by the overloaded methods:

Syntax
java.lang.Object get(int propertyIndex) 
java.lang.Object get(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getBigDecimal( )

Returns the value of a BigDecimal column property, as specified by the overloaded methods:

Syntax
java.math.BigDecimal getBigDecimal(int propertyIndex) 
java.math.BigDecimal getBigDecimal(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getBoolean( )

Returns the value of a boolean column property, as specified by the overloaded methods:

Syntax
boolean getBoolean(int propertyIndex) 
boolean getBoolean(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getBytes( )

Returns the value of a byte[] column property, as specified by the overloaded methods:

Syntax
byte[] getBytes(int propertyIndex) 
byte[] getBytes(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getInt( )

Returns the value of an int column property, as specified by the overloaded methods:

Syntax
int getInt(int propertyIndex) 
int getInt(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getList( )

Returns the value of a List column property, as specified by the overloaded methods:

Syntax
java.util.List getList(int propertyIndex) 
java.util.List getList(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

You can use this method to access the many-valued column property mapped to a temp-table array field. To identify the Java data type of each Property in the list, match the Progress 4GL data type of the corresponding temp-table field to the Java data type specified in Table 5–3.

getLong( )

Returns the value of a long column property, as specified by the overloaded methods:

Syntax
long getLong(String propertyName) 
long getLong(int propertyIndex) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getString( )

Returns the value of a String column property, as specified by the overloaded methods:

Syntax
String getString(int propertyIndex) 
String getString(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

getType( )

This method returns the type of the DataObject:

Syntax
commonj.sdo.Type getType() 

For more information on DataObject types, see the "Using Java SDO classes to access Property meta data" section.

isSet( )

Returns true if the column property, as specified by the method overloading, is considered to be set:

Syntax
boolean isSet(int propertyIndex) 
boolean isSet(String propertyName) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

set( )

Sets the value of the column property as an Object, as specified by the overloaded methods:

Syntax
void set(int propertyIndex, java.lang.Object value) 
void set(String propertyName, java.lang.Object value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

setBigDecimal( )

Sets the value of a BigDecimal column property, as specified by the overloaded methods:

Syntax
void setBigDecimal(int propertyIndex, java.math.BigDecimal value) 
void setBigDecimal(String propertyName, java.math.BigDecimal value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

setBoolean( )

Sets the value of a boolean column property, as specified by the overloaded methods:

Syntax
void setBoolean(int propertyIndex, boolean value) 
void setBoolean(String propertyName, boolean value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

setBytes( )

Sets the value of a byte[] column property, as specified by the overloaded methods:

Syntax
void setBytes(int propertyIndex, byte[] value) 
void setBytes(String propertyName, byte[] value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

setInt( )

Sets the value of an int column property, as specified by the overloaded methods:

Syntax
void setInt(int propertyIndex, int value) 
void setInt(String propertyName, int value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

setList( )

Sets the value of a List column property, as specified by the overloaded methods:

Syntax
void setList(int propertyIndex, java.util.List value) 
void setList(String propertyName, java.util.List value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

You can use this method to set the value of a many-valued column property mapped to a temp-table array field. To identify the Java data type of each Property in the list, match the Progress 4GL data type of the corresponding temp-table field to the Java data type specified in Table 5–3.

setLong( )

Sets the value of a long column property, as specified by the overloaded methods:

Syntax
void setLong(int propertyIndex, long value) 
void setLong(String propertyName, long value) 

propertyIndex

Specifies a 0-based index into the list of column properties contained by the ProDataObject. You can identify the index of a particular column property that corresponds to a mapped temp-table field using ProDataObjectMetaData methods. For more information, see the "ProDataObjectMetaData class" section.

propertyName

Specifies the name of a column property in the Property list contained by the ProDataObject. This name is typically identical to the name of a Progress 4GL temp-table field to which this column property is mapped.

value

Specifies the value to set for this property.

setString( )

Sets the value of a String column property, as specified by the overloaded methods:

Syntax
void setString(int propertyIndex, String value) 
void setString(String propertyName, String value) 


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095